WOTextField
Synopsis
WOTextField{[ name = fieldName;]
value = defaultValue;
[disabled =YES|NO;] ...};
Description
A WOTextField represents itself as a text input field. It corresponds to the HTML element <INPUT TYPE="TEXT"...>.
- name
-
A name that uniquely identifies this element within the form. You may specify a name or let WebObjects automatically assign one at runtime.
- value
-
On output, value sets the default value displayed in the single-line text field. On input, it holds the value the user entered into the field, or the default value if the user left the field untouched.
- disabled
-
If disabled evaluates to YES, the element appears in the page but is not active.
Examples